docs(flow): fix get_flow_detail docstring -- no schedule info is returned - #721
Merged
Conversation
…rned The docstring claimed the result includes schedule info, but the implementation only parses phases/tasks from the configuration body and enriches the raw config detail with counts and identifiers. Schedules are only fetched via list_flows(with_schedules=True) or the schedule-remove path. Docs-only change; no behavior change.
padak
added a commit
that referenced
this pull request
Aug 30, 2026
Batches the seven PRs merged since v0.91.0 into one version bump, one changelog entry and one set of resolved version gates: - #719 (#714) `flow triggers` -- table triggers, not just cron - #717 (#711) a 401 is no longer automatically blamed on the token - #722 (#704) setup completes in chat; skill covers setup + logout - #718 (#716) `--conversation-id` global flag - #706 223 stale version gates retired at the 0.80.0 floor - #702 release process enforced rather than remembered - #721 `get_flow_detail` docstring fix Includes a curated What's-new entry (#717's error rework is UI-visible on the Semantic Layer page) and the step 8-11 silent-drift review.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The docstring of
FlowService.get_flow_detailclaimed it returns "full flow detail including phases, tasks, and schedule info", but the implementation performs no schedule join -- it returns the raw config detail enriched with parsedphases/tasks,phase_count/task_count,component_id,branch_idandproject_alias. Schedules are only fetched vialist_flows(with_schedules=True)(theflow list --with-schedulespath) or duringflow schedule-remove.This PR fixes the docstring to match reality and points readers to the actual schedule path. Deliberately does NOT add a schedule fetch.
Scope